home *** CD-ROM | disk | FTP | other *** search
/ PC Elektro 3 / PC-Elektro-3-cd1.bin / KBan 2.0 / KBANSRC.LZH / SRC / PROG / KBANTBAR.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-06  |  566 b   |  22 lines

  1. // the declaration of class CKBANToolBar
  2. // Copyright (C) 1997 Kazutaka Hirata <khirata@jove.acs.unt.edu>
  3.  
  4. #ifndef _KBANTBAR_H_
  5. #define _KBANTBAR_H_
  6.  
  7. // stdafx.h should be included already.
  8.  
  9. class CKBANToolBar : public CToolBar {
  10.   CFont     m_font;
  11.   CComboBox m_ctlLayerComboBox;
  12. public:
  13.   virtual void OnUpdateCmdUI(CFrameWnd* pTarget, BOOL bDisableIfNoHandler);
  14. protected:
  15.   afx_msg int  OnCreate(LPCREATESTRUCT lpcs);
  16.   afx_msg void OnSelectLayer(void);
  17.   afx_msg void OnCloseUp(void);
  18.   DECLARE_MESSAGE_MAP()
  19. };
  20.  
  21. #endif /* _KBANTBAR_H_ */
  22.